home *** CD-ROM | disk | FTP | other *** search
/ ASP Advantage 1994 2nd Q2 / The Association of Shareware Professionals - The Official ASP Advantage (2nd Quarter)(1994).bin / files / progming / cenviw / icons.cmm < prev    next >
Encoding:
Text File  |  1993-08-05  |  268 b   |  8 lines

  1. // Icons.cmm - Tiny Cmm sample file that calls PostMessage() in the
  2. //             Windows User DLL (via Message.lib) to tell all windows
  3. //             to minimize (iconasize).
  4.  
  5. #include "Message.lib"
  6.  
  7. PostMessage(HWND_BROADCAST,WM_SYSCOMMAND,SC_MINIMIZE,0);
  8.